home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJTST111.ZIP / tests / t11.bat < prev    next >
DOS Batch File  |  1993-07-17  |  382b  |  25 lines

  1. @echo off
  2. echo Test of globbing & argv[0]
  3. gcc t11.c -o t11
  4. set GOBAT=%GO32%
  5.  
  6. set GO32=
  7. echo default case
  8. go32 t11 t1*.bat
  9.  
  10. set GO32=glob
  11. echo with globbing
  12. go32 t11 t1*.bat
  13.  
  14. set GO32=noglob
  15. echo without globbing
  16. go32 t11 t1*.bat
  17.  
  18. set GO32=%GOBAT%
  19. set GOBAT=
  20.  
  21. copy ..\bin\stub.exe t11b.exe
  22. stubedit t11b.exe runfile=t11
  23. echo using symbolic links
  24. t11b t1*.bat
  25.